home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / MATH / MATH1 / LEAST6.PAS < prev    next >
Pascal/Delphi Source File  |  1985-04-03  |  4KB  |  149 lines

  1. program least3;        { --> 226 }
  2. { Pascal program to perform a linear least-squares fit }
  3. { on the properties of steam with Gauss-Jordan routine }
  4. { Seperate modules needed:
  5.              GAUSSJ}
  6.  
  7.  
  8. const    maxr    = 20;        { data prints }
  9.     maxc    = 4;        { polynomial terms }
  10.  
  11. type    ary    = array[1..maxr] of real;
  12.     arys    = array[1..maxc] of real;
  13.     ary2    = array[1..maxr,1..maxc] of real;
  14.     ary2s    = array[1..maxc,1..maxc] of real;
  15.  
  16. var    p,t,v,
  17.     y,y_calc    : ary;
  18.     resid        : ary;
  19.     coef,sig    : arys;
  20.     nrow,ncol    : integer;
  21.     correl_coef    : real;
  22.  
  23. external procedure cls;
  24.  
  25. procedure get_data(var p,t: ary;    { independant variable }
  26.            var v:   ary;    { dependant variable }
  27.            var nrow: integer);    { length of vectors }
  28. { get values for n and arrays x,y }
  29.  
  30. var    i    : integer;
  31.  
  32. begin
  33.   nrow:=12;
  34.   t[1]:=400;    p[1]:=120;    v[1]:=4.079;
  35.   t[2]:=450;    p[2]:=120;    v[2]:=4.36;
  36.   t[3]:=500;    p[3]:=120;    v[3]:=4.633;
  37.   t[4]:=400;    p[4]:=140;    v[4]:=3.466;
  38.   t[5]:=450;    p[5]:=140;    v[5]:=3.713;
  39.   t[6]:=500;    p[6]:=140;    v[6]:=3.952;
  40.   t[7]:=400;    p[7]:=160;    v[7]:=3.007;
  41.   t[8]:=450;    p[8]:=160;    v[8]:=3.228;
  42.   t[9]:=500;    p[9]:=160;    v[9]:=3.440;
  43.   t[10]:=400;    p[10]:=180;    v[10]:=2.648;
  44.   t[11]:=450;    p[11]:=180;    v[11]:=2.850;
  45.   t[12]:=500;    p[12]:=180;    v[12]:=3.042;
  46.   for i:=1 to nrow do
  47.     t[i]:=t[i]+460.0    { convert to Rankine }
  48. end;        { proceddure get data }
  49.  
  50. procedure write_data;
  51. { print out the answers }
  52. var    i    : integer;
  53. begin
  54.   writeln;
  55.   writeln('  I      P      T      V        Y    YCALC     %RES');
  56.   for i:=1 to nrow do
  57.     writeln(i:3,p[i]:7:1,t[i]:7:1,v[i]:7:3,y[i]:9:2,y_calc[i]:9:2,
  58.         (100.0*resid[i]/y[i]):9:2);
  59.   writeln; writeln(' Coefficients errors ');
  60.   writeln(coef[1],' ',sig[1],' Constant term');
  61.   for i:=2 to ncol do
  62.     writeln(coef[i],' ',sig[i]);        { other terms }
  63.   writeln;
  64.   writeln('Correlation coefficient is ',correl_coef:8:5)
  65. end;        { write_data }
  66.  
  67. {procedure square(x: ary2;
  68.          y: ary;
  69.          var a: ary2s;
  70.          var g: arys;
  71.      nrow,ncol: integer);}
  72. { matrix multiplication routine }
  73. { a= transpose x times x }
  74. { g= y times x }
  75. {$I SQUARE.LIB }
  76.  
  77. {external procedure gaussj(var b:    ary2s;
  78.                   y:    arys;
  79.               var coef:    arys;
  80.               ncol:        integer;
  81.               var error:    boolean);
  82. }
  83. {$I GAUSSJ.LIB }
  84.  
  85. procedure linfit(p,t,v: ary;    { independant variable }
  86.          var y: ary;    { dependent variable }
  87.          var y_calc: ary;    { calculated dep. variable }
  88.          var resid:  ary;    { array of residuals }
  89.          var coef:   arys;    { coefficients }
  90.          var sig:    arys;    { error on coefficients }
  91.          nrow:       integer;    { length of array }
  92.          var ncol:   integer);    { number of terms }
  93.  
  94. { least squares fit to nrow sets of x and y pairs of points }
  95. { Seperate procedures needed:
  96.     SQUARE -> form square coefficient matrix
  97.     GAUSSJ -> Gauss-Jordan elimination }
  98.  
  99. const    r = 85.76;    { gas constant for steam }
  100.  
  101. var    xmatr        : ary2;        { data matrix }
  102.     a        : ary2s;    { coefficient matrix }
  103.     g        : arys;        { constant vector }
  104.     error        : boolean;
  105.     i,j,nm        : integer;
  106.     power,yi,yc,srs,see,
  107.     sum_y,sum_y2    : real;
  108.  
  109. begin        { procedure linfit }
  110.   ncol:=2;    { number of terms }
  111.   for i:=1 to nrow do
  112.     begin        { setup matrix }
  113.       power:=t[i];
  114.       xmatr[i,1]:=p[i]/power;    { first column }
  115.       xmatr[i,2]:=sqrt(p[i]);    { second column }
  116.       y[i]:=v[i]*p[i]-r*t[i]/144.0
  117.     end;
  118.   square(xmatr,y,a,g,nrow,ncol);
  119.   gaussj(a,g,coef,ncol,error);
  120.   sum_y:=0.0;
  121.   sum_y2:=0.0;
  122.   srs:=0.0;
  123.   for i:=1 to nrow do
  124.     begin
  125.       yi:=y[i];
  126.       yc:=0.0;
  127.       for j:=1 to ncol do
  128.     yc:=yc+coef[j]*xmatr[i,j];
  129.       y_calc[i]:=yc;
  130.       resid[i]:=yc-yi;
  131.       srs:=srs+sqr(resid[i]);
  132.       sum_y:=sum_y+yi;
  133.       sum_y2:=sum_y2+yi*yi
  134.     end;
  135.   correl_coef:=sqrt(1.0-srs/(sum_y2-sqr(sum_y)/nrow));
  136.   if nrow=ncol then nm:=1
  137.   else nm:=nrow-ncol;
  138.   see:=sqrt(srs/nm);
  139.   for i:=1 to ncol do        { errors on solution }
  140.     sig[i]:=see*sqrt(a[i,i])
  141. end;    { linfit }
  142.  
  143. begin        { main program }
  144.   cls;
  145.   get_data(p,t,v,nrow);
  146.   linfit(p,t,v,y,y_calc,resid,coef,sig,nrow,ncol);
  147.   write_data
  148. end.
  149.